home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE23 / PZAZZDEM / PZAZZDEM.ZIP / VCL16 / PZITEMED.DFM / PZITEMED.txt
Text File  |  1996-11-07  |  4KB  |  164 lines

  1. object PZItemsEditForm: TPZItemsEditForm
  2.   Left = 217
  3.   Top = 157
  4.   ActiveControl = Memo
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsDialog
  7.   Caption = 'Items editor'
  8.   ClientHeight = 275
  9.   ClientWidth = 513
  10.   Font.Color = clBlack
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = [fsBold]
  14.   Position = poScreenCenter
  15.   OnCreate = FormCreate
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object LineCount: TLabel
  19.     Left = 16
  20.     Top = 12
  21.     Width = 169
  22.     Height = 17
  23.     AutoSize = False
  24.     Caption = '0 lines'
  25.     Font.Color = clBlack
  26.     Font.Height = -11
  27.     Font.Name = 'MS Sans Serif'
  28.     Font.Style = []
  29.     ParentFont = False
  30.   end
  31.   object Bevel1: TBevel
  32.     Left = 8
  33.     Top = 8
  34.     Width = 497
  35.     Height = 229
  36.     Shape = bsFrame
  37.   end
  38.   object Memo: TMemo
  39.     Left = 16
  40.     Top = 28
  41.     Width = 481
  42.     Height = 201
  43.     Font.Color = clBlack
  44.     Font.Height = -11
  45.     Font.Name = 'MS Sans Serif'
  46.     Font.Style = []
  47.     ParentFont = False
  48.     ScrollBars = ssBoth
  49.     TabOrder = 0
  50.     WantTabs = True
  51.     WordWrap = False
  52.     OnChange = UpdateStatus
  53.     OnKeyDown = MemoKeyDown
  54.   end
  55.   object OkBtn: TBitBtn
  56.     Left = 176
  57.     Top = 244
  58.     Width = 75
  59.     Height = 25
  60.     Caption = '&OK'
  61.     Default = True
  62.     Font.Color = clBlack
  63.     Font.Height = -11
  64.     Font.Name = 'MS Sans Serif'
  65.     Font.Style = []
  66.     ModalResult = 1
  67.     ParentFont = False
  68.     TabOrder = 3
  69.     NumGlyphs = 2
  70.   end
  71.   object CancelBtn: TBitBtn
  72.     Left = 260
  73.     Top = 244
  74.     Width = 75
  75.     Height = 25
  76.     Cancel = True
  77.     Caption = 'Cancel'
  78.     Font.Color = clBlack
  79.     Font.Height = -11
  80.     Font.Name = 'MS Sans Serif'
  81.     Font.Style = []
  82.     ModalResult = 2
  83.     ParentFont = False
  84.     TabOrder = 4
  85.     NumGlyphs = 2
  86.   end
  87.   object LoadBtn: TBitBtn
  88.     Left = 8
  89.     Top = 244
  90.     Width = 75
  91.     Height = 25
  92.     Caption = '&Load...'
  93.     Font.Color = clBlack
  94.     Font.Height = -11
  95.     Font.Name = 'MS Sans Serif'
  96.     Font.Style = []
  97.     ParentFont = False
  98.     TabOrder = 1
  99.     OnClick = FileOpen
  100.   end
  101.   object SaveBtn: TBitBtn
  102.     Left = 92
  103.     Top = 244
  104.     Width = 75
  105.     Height = 25
  106.     Caption = '&Save...'
  107.     Font.Color = clBlack
  108.     Font.Height = -11
  109.     Font.Name = 'MS Sans Serif'
  110.     Font.Style = []
  111.     ParentFont = False
  112.     TabOrder = 2
  113.     OnClick = FileSave
  114.   end
  115.   object HelpBtn: TBitBtn
  116.     Left = 428
  117.     Top = 244
  118.     Width = 75
  119.     Height = 25
  120.     Caption = '&Help'
  121.     Font.Color = clBlack
  122.     Font.Height = -11
  123.     Font.Name = 'MS Sans Serif'
  124.     Font.Style = []
  125.     ParentFont = False
  126.     TabOrder = 6
  127.     OnClick = HelpBtnClick
  128.     NumGlyphs = 2
  129.   end
  130.   object AlignBtn: TBitBtn
  131.     Left = 344
  132.     Top = 244
  133.     Width = 75
  134.     Height = 25
  135.     Caption = '&Align'
  136.     Font.Color = clBlack
  137.     Font.Height = -11
  138.     Font.Name = 'MS Sans Serif'
  139.     Font.Style = []
  140.     ParentFont = False
  141.     TabOrder = 5
  142.     OnClick = AlignBtnClick
  143.   end
  144.   object OpenDialog: TOpenDialog
  145.     DefaultExt = 'TXT'
  146.     FileEditStyle = fsEdit
  147.     Filter = 
  148.       'Text files (*.TXT)|*.TXT|Config files (*.SYS;*.INI)|*.SYS;*.INI|' +
  149.       'Batch files (*.BAT)|*.BAT|All files (*.*)|*.*'
  150.     Options = [ofHideReadOnly, ofShowHelp, ofPathMustExist, ofFileMustExist]
  151.     Title = 'Load string list'
  152.     Left = 440
  153.   end
  154.   object SaveDialog: TSaveDialog
  155.     FileEditStyle = fsEdit
  156.     Filter = 
  157.       'Text files (*.TXT)|*.TXT|Config files (*.SYS;*.INI)|*.SYS;*.INI|' +
  158.       'Batch files (*.BAT)|*.BAT|All files (*.*)|*.*'
  159.     Options = [ofOverwritePrompt, ofHideReadOnly, ofShowHelp, ofPathMustExist]
  160.     Title = 'Save string list'
  161.     Left = 468
  162.   end
  163. end
  164.